elfutils.git
6 days agoMerge version 0.194-1+rpi1 and 0.194-4 to produce 0.194-4+rpi1 forky-staging archive/raspbian/0.194-4+rpi1 raspbian/0.194-4+rpi1
Raspbian automatic forward porter [Sat, 28 Mar 2026 05:56:51 +0000 (05:56 +0000)]
Merge version 0.194-1+rpi1 and 0.194-4 to produce 0.194-4+rpi1

2 weeks agoMerge elfutils (0.194-4) import into refs/heads/workingbranch
Matthias Klose [Tue, 17 Mar 2026 14:25:35 +0000 (15:25 +0100)]
Merge elfutils (0.194-4) import into refs/heads/workingbranch

2 weeks agoaarch64: Recognize SHT_AARCH64_ATTRIBUTES
Mark Wielaard [Tue, 24 Feb 2026 21:19:48 +0000 (22:19 +0100)]
aarch64: Recognize SHT_AARCH64_ATTRIBUTES

Recognize SHT_AARCH64_ATTRIBUTES. This is enough to stop elflint
complaining about unknown section types. But doesn't implement parsing
the attributes.

* backends/aarch64_symbol.c (aarch64_section_type_name):
  New function.
* backends/aarch64_init.c (aarch64_init): Hook
        section_type_name.

https://sourceware.org/bugzilla/show_bug.cgi?id=33923

Signed-off-by: Mark Wielaard <mark@klomp.org>
Gbp-Pq: Name pr33991.diff

2 weeks agoperf_regs
Debian Elfutils Maintainers [Tue, 17 Mar 2026 14:25:35 +0000 (15:25 +0100)]
perf_regs

Gbp-Pq: Name perf_regs.diff

2 weeks agohurd-hacks
Debian Elfutils Maintainers [Tue, 17 Mar 2026 14:25:35 +0000 (15:25 +0100)]
hurd-hacks

Gbp-Pq: Name hurd-hacks.diff

2 weeks agokfreebsd-mremap-stub
Debian Elfutils Maintainers [Tue, 17 Mar 2026 14:25:35 +0000 (15:25 +0100)]
kfreebsd-mremap-stub

===================================================================

Gbp-Pq: Name kfreebsd-mremap-stub

2 weeks agokfreebsd-debuginfod
Debian Elfutils Maintainers [Tue, 17 Mar 2026 14:25:35 +0000 (15:25 +0100)]
kfreebsd-debuginfod

Gbp-Pq: Name kfreebsd-debuginfod

2 weeks agoremove-old-glibc-hack
Debian Elfutils Maintainers [Tue, 17 Mar 2026 14:25:35 +0000 (15:25 +0100)]
remove-old-glibc-hack

Gbp-Pq: Name remove-old-glibc-hack.diff

2 weeks agodisable -Werror as it tends to break with new gcc versions
Helmut Grohne [Tue, 17 Mar 2026 14:25:35 +0000 (15:25 +0100)]
disable -Werror as it tends to break with new gcc versions

Bug-Debian: https://bugs.debian.org/886004
Last-Update: 2018-01-01

Gbp-Pq: Name disable_werror.patch

2 weeks agoignore_strmerge
Debian Elfutils Maintainers [Tue, 17 Mar 2026 14:25:35 +0000 (15:25 +0100)]
ignore_strmerge

Gbp-Pq: Name ignore_strmerge.diff

2 weeks agotestsuite-ignore-elflint
Debian Elfutils Maintainers [Tue, 17 Mar 2026 14:25:35 +0000 (15:25 +0100)]
testsuite-ignore-elflint

On many architectures this test fails because binaries/libs produced by
binutils don't pass elflint. However elfutils shouldn't FTBFS because of this.

So we run the tests on all archs to see what breaks, but if it breaks we ignore
the result (exitcode 77 means: this test was skipped).

Gbp-Pq: Name testsuite-ignore-elflint.diff

2 weeks ago[PATCH] libdwfl: Work around ET_REL files with sh_addr fields set to non-zero
Mark Wielaard [Mon, 2 Mar 2026 14:51:48 +0000 (15:51 +0100)]
[PATCH] libdwfl: Work around ET_REL files with sh_addr fields set to non-zero

libdwfl tries to model the loading of modules (executables, shared
libraries, the linux kernel and/or kernel modules) in
memory. Depending on the (offline) load address it then also applies
(simple) relocations for ET_REL (object files or kernel modules). Load
addresses are normally represented through phdr segments for ET_EXEC
or ET_DYN, but for ET_REL files (which don't have phdrs) the Elf
section sh_addr fields are used.

The sh_addr fields of the ET_REL Elf images are updated in two places
__libdwfl_elf_address_range (through __libdwfl_report_elf) and
__libdwfl_relocate (through dwfl_module_getelf and
dwfl_module_getdwarf). Both rely on sh_addr being zero if no load
address has been set yet, so the address layout for each (SHF_ALLOC)
section is done only once.

Recent linux kernels use a linker script that does set the sh_addr
fields to (random, linker assigned) non-zero addresses. See commit
1ba9f8979426 ("vmlinux.lds: Unify TEXT_MAIN, DATA_MAIN, and related
macros").

The sh_addr values seems unnecessary, but because they aren't zero
anymore our layout/relocation code doesn't know it still has to figure
out a "real" load value for these sections.

Introduce __libdwfl_reset_sh_addr which resets all sh_addr fields to
zero for SHF_ALLOC sections in ET_REL files.

We don't call __libdwfl_reset_sh_addr on aux_sym files (from
.gnu_debugdata) and when constructing an Elf from a core file. In all
other cases we know (or assume) that the Elf file is being opened
through libdw_open_elf (called indirectly through __libdw_open_elf,
__libdwfl_report_offline, dwfl_module_getelf and dwfl_module_getdwarf)

This technically changes the Elf that goes through libdwfl, but we
would already update the sh_addr fields for ET_REL Elf sections in
memory anyway to represent the load address as libdwfl would see
them. So this isn't really a change in behavior (it just might update
the sh_addr field twice).

* libdwfl/libdwflP.h (__libdwfl_reset_sh_addr): Define new
        internal function.
* libdwfl/relocate.c (__libdwfl_reset_sh_addr): New internal
        function.
* libdwfl/open.c (libdw_open_elf): Call __libdwfl_reset_sh_addr.
* libdwfl/dwfl_module_getdwarf.c (open_elf_file): Add comment.
(find_aux_sym): Likewise.
(find_dw): Likewise.
* libdwfl/dwfl_segment_report_module.c
(dwfl_segment_report_module): Likewise.
* libdwfl/dwfl_report_elf.c (__libdwfl_report_elf): Likewise.

Signed-off-by: Mark Wielaard <mark@klomp.org>
Gbp-Pq: Name elfutils-0.194-sh_addr-non-zero.patch

2 weeks ago[PATCH] Fix const-correctness issues
Andreas Schwab [Mon, 24 Nov 2025 12:46:16 +0000 (13:46 +0100)]
[PATCH] Fix const-correctness issues

These were uncovered by the C23 const-preserving library macros.

Gbp-Pq: Name elfutils-0.194-fix-const.patch

2 weeks ago[PATCH] readelf: Allocate job_data one-by-one as needed
Aaron Merey [Tue, 28 Oct 2025 02:00:12 +0000 (22:00 -0400)]
[PATCH] readelf: Allocate job_data one-by-one as needed

Currently, job_data is stored in an array whose size is equal to the
number of debug sections (.debug_*, .eh_frame, .gdb_index, etc.).

This size may be too small if a binary contains multiple debug sections
with the same name.  For example an ET_REL binary compiled with -ggdb3
can contain multiple .debug_macro sections.

Fix this by allocating job_data on the fly when preparing to read a
debug section.  This supports an arbitrary number of debug sections
while also avoiding unnecessary memory allocation.

https://sourceware.org/bugzilla/show_bug.cgi?id=33580

Signed-off-by: Aaron Merey <amerey@redhat.com>
Gbp-Pq: Name elfutils-0.194-alloc-jobs.patch

2 weeks agoelfutils (0.194-4) unstable; urgency=medium
Matthias Klose [Tue, 17 Mar 2026 14:25:35 +0000 (15:25 +0100)]
elfutils (0.194-4) unstable; urgency=medium

  * Apply two more patches from the trunk:
    - Fix const-correctness issues.
    - libdwfl: Work around ET_REL files with sh_addr fields set to
      non-zero.

[dgit import unpatched elfutils 0.194-4]

2 weeks agoImport elfutils_0.194-4.debian.tar.xz
Matthias Klose [Tue, 17 Mar 2026 14:25:35 +0000 (15:25 +0100)]
Import elfutils_0.194-4.debian.tar.xz

[dgit import tarball elfutils 0.194-4 elfutils_0.194-4.debian.tar.xz]

2 months agoMerge version 0.192-4+rpi1 and 0.194-1 to produce 0.194-1+rpi1 archive/raspbian/0.194-1+rpi1 raspbian/0.194-1+rpi1
Raspbian automatic forward porter [Thu, 22 Jan 2026 12:48:07 +0000 (12:48 +0000)]
Merge version 0.192-4+rpi1 and 0.194-1 to produce 0.194-1+rpi1

5 months agoMerge elfutils (0.194-1) import into refs/heads/workingbranch
Matthias Klose [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
Merge elfutils (0.194-1) import into refs/heads/workingbranch

5 months agoImport elfutils_0.194.orig.tar.bz2
Matthias Klose [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
Import elfutils_0.194.orig.tar.bz2

[dgit import orig elfutils_0.194.orig.tar.bz2]

5 months agoperf_regs
Debian Elfutils Maintainers [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
perf_regs

Gbp-Pq: Name perf_regs.diff

5 months agohurd-hacks
Debian Elfutils Maintainers [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
hurd-hacks

Gbp-Pq: Name hurd-hacks.diff

5 months agokfreebsd-mremap-stub
Debian Elfutils Maintainers [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
kfreebsd-mremap-stub

===================================================================

Gbp-Pq: Name kfreebsd-mremap-stub

5 months agokfreebsd-debuginfod
Debian Elfutils Maintainers [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
kfreebsd-debuginfod

Gbp-Pq: Name kfreebsd-debuginfod

5 months agoremove-old-glibc-hack
Debian Elfutils Maintainers [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
remove-old-glibc-hack

Gbp-Pq: Name remove-old-glibc-hack.diff

5 months agodisable -Werror as it tends to break with new gcc versions
Helmut Grohne [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
disable -Werror as it tends to break with new gcc versions

Bug-Debian: https://bugs.debian.org/886004
Last-Update: 2018-01-01

Gbp-Pq: Name disable_werror.patch

5 months agoignore_strmerge
Debian Elfutils Maintainers [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
ignore_strmerge

Gbp-Pq: Name ignore_strmerge.diff

5 months agotestsuite-ignore-elflint
Debian Elfutils Maintainers [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
testsuite-ignore-elflint

On many architectures this test fails because binaries/libs produced by
binutils don't pass elflint. However elfutils shouldn't FTBFS because of this.

So we run the tests on all archs to see what breaks, but if it breaks we ignore
the result (exitcode 77 means: this test was skipped).

Gbp-Pq: Name testsuite-ignore-elflint.diff

5 months agoelfutils (0.194-1) unstable; urgency=medium
Matthias Klose [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
elfutils (0.194-1) unstable; urgency=medium

  * New upstream version.
  * Update symbols files.
  * Fix some lintian warnings.

[dgit import unpatched elfutils 0.194-1]

5 months agoImport elfutils_0.194-1.debian.tar.xz
Matthias Klose [Wed, 29 Oct 2025 05:57:58 +0000 (06:57 +0100)]
Import elfutils_0.194-1.debian.tar.xz

[dgit import tarball elfutils 0.194-1 elfutils_0.194-1.debian.tar.xz]

17 months agoMerge version 0.191-2+rpi1 and 0.192-4 to produce 0.192-4+rpi1 trixie-staging archive/raspbian/0.192-4+rpi1 raspbian/0.192-4+rpi1
Raspbian automatic forward porter [Thu, 31 Oct 2024 22:01:15 +0000 (22:01 +0000)]
Merge version 0.191-2+rpi1 and 0.192-4 to produce 0.192-4+rpi1

17 months agoMerge elfutils (0.192-4) import into refs/heads/workingbranch
Matthias Klose [Tue, 22 Oct 2024 11:13:50 +0000 (13:13 +0200)]
Merge elfutils (0.192-4) import into refs/heads/workingbranch

17 months agohurd-hacks
Debian Elfutils Maintainers [Tue, 22 Oct 2024 11:13:50 +0000 (13:13 +0200)]
hurd-hacks

Gbp-Pq: Name hurd-hacks.diff

17 months agokfreebsd-mremap-stub
Debian Elfutils Maintainers [Tue, 22 Oct 2024 11:13:50 +0000 (13:13 +0200)]
kfreebsd-mremap-stub

===================================================================

Gbp-Pq: Name kfreebsd-mremap-stub

17 months agokfreebsd-debuginfod
Debian Elfutils Maintainers [Tue, 22 Oct 2024 11:13:50 +0000 (13:13 +0200)]
kfreebsd-debuginfod

Gbp-Pq: Name kfreebsd-debuginfod

17 months agoremove-old-glibc-hack
Debian Elfutils Maintainers [Tue, 22 Oct 2024 11:13:50 +0000 (13:13 +0200)]
remove-old-glibc-hack

Gbp-Pq: Name remove-old-glibc-hack.diff

17 months agodisable -Werror as it tends to break with new gcc versions
Helmut Grohne [Tue, 22 Oct 2024 11:13:50 +0000 (13:13 +0200)]
disable -Werror as it tends to break with new gcc versions

Bug-Debian: https://bugs.debian.org/886004
Last-Update: 2018-01-01

Gbp-Pq: Name disable_werror.patch

17 months agoignore_strmerge
Debian Elfutils Maintainers [Tue, 22 Oct 2024 11:13:50 +0000 (13:13 +0200)]
ignore_strmerge

Gbp-Pq: Name ignore_strmerge.diff

17 months agotestsuite-ignore-elflint
Debian Elfutils Maintainers [Tue, 22 Oct 2024 11:13:50 +0000 (13:13 +0200)]
testsuite-ignore-elflint

On many architectures this test fails because binaries/libs produced by
binutils don't pass elflint. However elfutils shouldn't FTBFS because of this.

So we run the tests on all archs to see what breaks, but if it breaks we ignore
the result (exitcode 77 means: this test was skipped).

Gbp-Pq: Name testsuite-ignore-elflint.diff

17 months agoelfutils (0.192-4) unstable; urgency=medium
Matthias Klose [Tue, 22 Oct 2024 11:13:50 +0000 (13:13 +0200)]
elfutils (0.192-4) unstable; urgency=medium

  * Drop again the build dependency libimaevm-dev.

[dgit import unpatched elfutils 0.192-4]

17 months agoImport elfutils_0.192-4.debian.tar.xz
Matthias Klose [Tue, 22 Oct 2024 11:13:50 +0000 (13:13 +0200)]
Import elfutils_0.192-4.debian.tar.xz

[dgit import tarball elfutils 0.192-4 elfutils_0.192-4.debian.tar.xz]

17 months agoImport elfutils_0.192.orig.tar.bz2
Matthias Klose [Mon, 21 Oct 2024 10:04:15 +0000 (12:04 +0200)]
Import elfutils_0.192.orig.tar.bz2

[dgit import orig elfutils_0.192.orig.tar.bz2]

20 months agoMerge version 0.191-1+rpi1 and 0.191-2 to produce 0.191-2+rpi1 archive/raspbian/0.191-2+rpi1 raspbian/0.191-2+rpi1
Raspbian automatic forward porter [Sat, 27 Jul 2024 01:13:50 +0000 (02:13 +0100)]
Merge version 0.191-1+rpi1 and 0.191-2 to produce 0.191-2+rpi1

20 months agoMerge elfutils (0.191-2) import into refs/heads/workingbranch
Sergio Durigan Junior [Sat, 13 Jul 2024 04:30:43 +0000 (00:30 -0400)]
Merge elfutils (0.191-2) import into refs/heads/workingbranch

20 months agohurd-hacks
Debian Elfutils Maintainers [Sat, 13 Jul 2024 04:30:43 +0000 (00:30 -0400)]
hurd-hacks

Gbp-Pq: Name hurd-hacks.diff

20 months agokfreebsd-mremap-stub
Debian Elfutils Maintainers [Sat, 13 Jul 2024 04:30:43 +0000 (00:30 -0400)]
kfreebsd-mremap-stub

===================================================================

Gbp-Pq: Name kfreebsd-mremap-stub

20 months agokfreebsd-debuginfod
Debian Elfutils Maintainers [Sat, 13 Jul 2024 04:30:43 +0000 (00:30 -0400)]
kfreebsd-debuginfod

===================================================================

Gbp-Pq: Name kfreebsd-debuginfod

20 months agoremove-old-glibc-hack
Debian Elfutils Maintainers [Sat, 13 Jul 2024 04:30:43 +0000 (00:30 -0400)]
remove-old-glibc-hack

Gbp-Pq: Name remove-old-glibc-hack.diff

20 months agoriscv-retval-workaround
Debian Elfutils Maintainers [Sat, 13 Jul 2024 04:30:43 +0000 (00:30 -0400)]
riscv-retval-workaround

Gbp-Pq: Name riscv-retval-workaround.patch

20 months agodisable -Werror as it tends to break with new gcc versions
Helmut Grohne [Sat, 13 Jul 2024 04:30:43 +0000 (00:30 -0400)]
disable -Werror as it tends to break with new gcc versions

Bug-Debian: https://bugs.debian.org/886004
Last-Update: 2018-01-01

Gbp-Pq: Name disable_werror.patch

20 months agoignore_strmerge
Debian Elfutils Maintainers [Sat, 13 Jul 2024 04:30:43 +0000 (00:30 -0400)]
ignore_strmerge

Gbp-Pq: Name ignore_strmerge.diff

20 months agotestsuite-ignore-elflint
Debian Elfutils Maintainers [Sat, 13 Jul 2024 04:30:43 +0000 (00:30 -0400)]
testsuite-ignore-elflint

On many architectures this test fails because binaries/libs produced by
binutils don't pass elflint. However elfutils shouldn't FTBFS because of this.

So we run the tests on all archs to see what breaks, but if it breaks we ignore
the result (exitcode 77 means: this test was skipped).

Gbp-Pq: Name testsuite-ignore-elflint.diff

20 months agoelfutils (0.191-2) unstable; urgency=medium
Sergio Durigan Junior [Sat, 13 Jul 2024 04:30:43 +0000 (00:30 -0400)]
elfutils (0.191-2) unstable; urgency=medium

  * d/control: Recommends libarchive-tools. (Closes: #1063767)

[dgit import unpatched elfutils 0.191-2]

20 months agoImport elfutils_0.191-2.debian.tar.xz
Sergio Durigan Junior [Sat, 13 Jul 2024 04:30:43 +0000 (00:30 -0400)]
Import elfutils_0.191-2.debian.tar.xz

[dgit import tarball elfutils 0.191-2 elfutils_0.191-2.debian.tar.xz]

22 months agoMerge elfutils (0.191-1+rpi1) import into refs/heads/workingbranch
Peter Michael Green [Thu, 9 May 2024 18:14:23 +0000 (18:14 +0000)]
Merge elfutils (0.191-1+rpi1) import into refs/heads/workingbranch

22 months agohurd-hacks
Debian Elfutils Maintainers [Thu, 9 May 2024 18:14:23 +0000 (18:14 +0000)]
hurd-hacks

Gbp-Pq: Name hurd-hacks.diff

22 months agokfreebsd-mremap-stub
Debian Elfutils Maintainers [Thu, 9 May 2024 18:14:23 +0000 (18:14 +0000)]
kfreebsd-mremap-stub

===================================================================

Gbp-Pq: Name kfreebsd-mremap-stub

22 months agokfreebsd-debuginfod
Debian Elfutils Maintainers [Thu, 9 May 2024 18:14:23 +0000 (18:14 +0000)]
kfreebsd-debuginfod

===================================================================

Gbp-Pq: Name kfreebsd-debuginfod

22 months agoremove-old-glibc-hack
Debian Elfutils Maintainers [Thu, 9 May 2024 18:14:23 +0000 (18:14 +0000)]
remove-old-glibc-hack

Gbp-Pq: Name remove-old-glibc-hack.diff

22 months agoriscv-retval-workaround
Debian Elfutils Maintainers [Thu, 9 May 2024 18:14:23 +0000 (18:14 +0000)]
riscv-retval-workaround

Gbp-Pq: Name riscv-retval-workaround.patch

22 months agodisable -Werror as it tends to break with new gcc versions
Helmut Grohne [Thu, 9 May 2024 18:14:23 +0000 (18:14 +0000)]
disable -Werror as it tends to break with new gcc versions

Bug-Debian: https://bugs.debian.org/886004
Last-Update: 2018-01-01

Gbp-Pq: Name disable_werror.patch

22 months agoignore_strmerge
Debian Elfutils Maintainers [Thu, 9 May 2024 18:14:23 +0000 (18:14 +0000)]
ignore_strmerge

Gbp-Pq: Name ignore_strmerge.diff

22 months agotestsuite-ignore-elflint
Debian Elfutils Maintainers [Thu, 9 May 2024 18:14:23 +0000 (18:14 +0000)]
testsuite-ignore-elflint

On many architectures this test fails because binaries/libs produced by
binutils don't pass elflint. However elfutils shouldn't FTBFS because of this.

So we run the tests on all archs to see what breaks, but if it breaks we ignore
the result (exitcode 77 means: this test was skipped).

Gbp-Pq: Name testsuite-ignore-elflint.diff

22 months agoelfutils (0.191-1+rpi1) trixie-staging; urgency=medium
Peter Michael Green [Thu, 9 May 2024 18:14:23 +0000 (18:14 +0000)]
elfutils (0.191-1+rpi1) trixie-staging; urgency=medium

  * Don't try to install elfutils.urls, raspbian does not currently run
    a debuginfod service.

[dgit import unpatched elfutils 0.191-1+rpi1]

22 months agoImport elfutils_0.191-1+rpi1.debian.tar.xz
Peter Michael Green [Thu, 9 May 2024 18:14:23 +0000 (18:14 +0000)]
Import elfutils_0.191-1+rpi1.debian.tar.xz

[dgit import tarball elfutils 0.191-1+rpi1 elfutils_0.191-1+rpi1.debian.tar.xz]

2 years agoMerge elfutils (0.191-1) import into refs/heads/workingbranch
Matthias Klose [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
Merge elfutils (0.191-1) import into refs/heads/workingbranch

2 years agoImport elfutils_0.191.orig.tar.bz2
Matthias Klose [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
Import elfutils_0.191.orig.tar.bz2

[dgit import orig elfutils_0.191.orig.tar.bz2]

2 years agohurd-hacks
Debian Elfutils Maintainers [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
hurd-hacks

Gbp-Pq: Name hurd-hacks.diff

2 years agokfreebsd-mremap-stub
Debian Elfutils Maintainers [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
kfreebsd-mremap-stub

===================================================================

Gbp-Pq: Name kfreebsd-mremap-stub

2 years agokfreebsd-debuginfod
Debian Elfutils Maintainers [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
kfreebsd-debuginfod

===================================================================

Gbp-Pq: Name kfreebsd-debuginfod

2 years agoremove-old-glibc-hack
Debian Elfutils Maintainers [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
remove-old-glibc-hack

Gbp-Pq: Name remove-old-glibc-hack.diff

2 years agoriscv-retval-workaround
Debian Elfutils Maintainers [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
riscv-retval-workaround

Gbp-Pq: Name riscv-retval-workaround.patch

2 years agodisable -Werror as it tends to break with new gcc versions
Helmut Grohne [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
disable -Werror as it tends to break with new gcc versions

Bug-Debian: https://bugs.debian.org/886004
Last-Update: 2018-01-01

Gbp-Pq: Name disable_werror.patch

2 years agoignore_strmerge
Debian Elfutils Maintainers [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
ignore_strmerge

Gbp-Pq: Name ignore_strmerge.diff

2 years agotestsuite-ignore-elflint
Debian Elfutils Maintainers [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
testsuite-ignore-elflint

On many architectures this test fails because binaries/libs produced by
binutils don't pass elflint. However elfutils shouldn't FTBFS because of this.

So we run the tests on all archs to see what breaks, but if it breaks we ignore
the result (exitcode 77 means: this test was skipped).

Gbp-Pq: Name testsuite-ignore-elflint.diff

2 years agoelfutils (0.191-1) unstable; urgency=medium
Matthias Klose [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
elfutils (0.191-1) unstable; urgency=medium

  * New upstream version.
  * Add translations (it, sv). Closes: #1050108, #1049367.
  * Fix cross build failure (Helmut Grohne). Closes: #1057813.

[dgit import unpatched elfutils 0.191-1]

2 years agoImport elfutils_0.191-1.debian.tar.xz
Matthias Klose [Tue, 12 Mar 2024 10:42:59 +0000 (11:42 +0100)]
Import elfutils_0.191-1.debian.tar.xz

[dgit import tarball elfutils 0.191-1 elfutils_0.191-1.debian.tar.xz]

2 years agoMerge elfutils (0.190-1) import into refs/heads/workingbranch
Matthias Klose [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
Merge elfutils (0.190-1) import into refs/heads/workingbranch

2 years agohurd-hacks
Debian Elfutils Maintainers [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
hurd-hacks

===================================================================

Gbp-Pq: Name hurd-hacks.diff

2 years agokfreebsd-mremap-stub
Debian Elfutils Maintainers [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
kfreebsd-mremap-stub

===================================================================

Gbp-Pq: Name kfreebsd-mremap-stub

2 years agokfreebsd-debuginfod
Debian Elfutils Maintainers [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
kfreebsd-debuginfod

===================================================================

Gbp-Pq: Name kfreebsd-debuginfod

2 years agoremove-old-glibc-hack
Debian Elfutils Maintainers [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
remove-old-glibc-hack

Gbp-Pq: Name remove-old-glibc-hack.diff

2 years agoriscv-retval-workaround
Debian Elfutils Maintainers [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
riscv-retval-workaround

Gbp-Pq: Name riscv-retval-workaround.patch

2 years agodisable -Werror as it tends to break with new gcc versions
Helmut Grohne [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
disable -Werror as it tends to break with new gcc versions

Bug-Debian: https://bugs.debian.org/886004
Last-Update: 2018-01-01

Gbp-Pq: Name disable_werror.patch

2 years agoignore_strmerge
Debian Elfutils Maintainers [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
ignore_strmerge

Gbp-Pq: Name ignore_strmerge.diff

2 years agotestsuite-ignore-elflint
Debian Elfutils Maintainers [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
testsuite-ignore-elflint

On many architectures this test fails because binaries/libs produced by
binutils don't pass elflint. However elfutils shouldn't FTBFS because of this.

So we run the tests on all archs to see what breaks, but if it breaks we ignore
the result (exitcode 77 means: this test was skipped).

Gbp-Pq: Name testsuite-ignore-elflint.diff

2 years agoelfutils (0.190-1) unstable; urgency=medium
Matthias Klose [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
elfutils (0.190-1) unstable; urgency=medium

  * New upstream version.

[dgit import unpatched elfutils 0.190-1]

2 years agoImport elfutils_0.190.orig.tar.bz2
Matthias Klose [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
Import elfutils_0.190.orig.tar.bz2

[dgit import orig elfutils_0.190.orig.tar.bz2]

2 years agoImport elfutils_0.190-1.debian.tar.xz
Matthias Klose [Thu, 16 Nov 2023 13:54:07 +0000 (14:54 +0100)]
Import elfutils_0.190-1.debian.tar.xz

[dgit import tarball elfutils 0.190-1 elfutils_0.190-1.debian.tar.xz]

2 years agoMerge elfutils (0.189-4) import into refs/heads/workingbranch
Matthias Klose [Tue, 4 Jul 2023 09:37:16 +0000 (10:37 +0100)]
Merge elfutils (0.189-4) import into refs/heads/workingbranch

2 years agohurd-hacks
Debian Elfutils Maintainers [Tue, 4 Jul 2023 09:37:16 +0000 (10:37 +0100)]
hurd-hacks

===================================================================

Gbp-Pq: Name hurd-hacks.diff

2 years agokfreebsd-mremap-stub
Debian Elfutils Maintainers [Tue, 4 Jul 2023 09:37:16 +0000 (10:37 +0100)]
kfreebsd-mremap-stub

===================================================================

Gbp-Pq: Name kfreebsd-mremap-stub

2 years agokfreebsd-debuginfod
Debian Elfutils Maintainers [Tue, 4 Jul 2023 09:37:16 +0000 (10:37 +0100)]
kfreebsd-debuginfod

===================================================================

Gbp-Pq: Name kfreebsd-debuginfod

2 years agoremove-old-glibc-hack
Debian Elfutils Maintainers [Tue, 4 Jul 2023 09:37:16 +0000 (10:37 +0100)]
remove-old-glibc-hack

Gbp-Pq: Name remove-old-glibc-hack.diff

2 years agoriscv-retval-workaround
Debian Elfutils Maintainers [Tue, 4 Jul 2023 09:37:16 +0000 (10:37 +0100)]
riscv-retval-workaround

Gbp-Pq: Name riscv-retval-workaround.patch

2 years agodisable -Werror as it tends to break with new gcc versions
Helmut Grohne [Tue, 4 Jul 2023 09:37:16 +0000 (10:37 +0100)]
disable -Werror as it tends to break with new gcc versions

Bug-Debian: https://bugs.debian.org/886004
Last-Update: 2018-01-01

Gbp-Pq: Name disable_werror.patch

2 years agoignore_strmerge
Debian Elfutils Maintainers [Tue, 4 Jul 2023 09:37:16 +0000 (10:37 +0100)]
ignore_strmerge

Gbp-Pq: Name ignore_strmerge.diff

2 years agotestsuite-ignore-elflint
Debian Elfutils Maintainers [Tue, 4 Jul 2023 09:37:16 +0000 (10:37 +0100)]
testsuite-ignore-elflint

On many architectures this test fails because binaries/libs produced by
binutils don't pass elflint. However elfutils shouldn't FTBFS because of this.

So we run the tests on all archs to see what breaks, but if it breaks we ignore
the result (exitcode 77 means: this test was skipped).

Gbp-Pq: Name testsuite-ignore-elflint.diff

2 years agoelfutils (0.189-4) unstable; urgency=medium
Matthias Klose [Tue, 4 Jul 2023 09:37:16 +0000 (10:37 +0100)]
elfutils (0.189-4) unstable; urgency=medium

  * Remove bashism in maintainer script. Closes: #999414.

[dgit import unpatched elfutils 0.189-4]

2 years agoImport elfutils_0.189-4.debian.tar.xz
Matthias Klose [Tue, 4 Jul 2023 09:37:16 +0000 (10:37 +0100)]
Import elfutils_0.189-4.debian.tar.xz

[dgit import tarball elfutils 0.189-4 elfutils_0.189-4.debian.tar.xz]

2 years agoImport elfutils_0.189.orig.tar.bz2
Matthias Klose [Tue, 11 Apr 2023 10:51:29 +0000 (11:51 +0100)]
Import elfutils_0.189.orig.tar.bz2

[dgit import orig elfutils_0.189.orig.tar.bz2]